Daily Evaluation Calendar
fun DailyEvaluationCalendar(modifier: Modifier = Modifier, evaluations: List<DailyEvaluationEntry>, selectedDate: LocalDate?, onDateSelect: (LocalDate?) -> Unit)
Displays a calendar for daily evaluations and allows the user to select a date.
Parameters
modifier
A Modifier to customize the UI.
evaluations
A list of DailyEvaluationEntry to display on the calendar.
selected Date
The currently selected date in the calendar.
on Date Select
A lambda function that handles the date selection.